.header-hero {
    background-image: url('/assets/gallery-hero.webp'); 
    background-size: cover;
    background-position: center;
    height: 70vh;
    color: white;
    justify-content: flex-end;
    padding-right: 5%;
    margin-top: 110px !important;
}

.gallery-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px; 
    display: block;
}

@media (width < 992px) {
    .left-column { 
    display: flex; 
    flex-direction: column; 
   }

    .right-column { 
    display: flex; 
    flex-direction: column; 
   }

   .right-column .gallery-item { 
    flex-grow: 1; 
   }
}

.nav-arrow {
    width: 38px;
    height: 38px;
    display: inline-flex;
    cursor: pointer;
    margin-left: 10px;
}

.arrow-prev { 
    background-color: var(--primary-color); 
    border: 1px solid var(--primary-color); 
}

.arrow-next { 
    background-color: var(--primary-color); 
    border: 1px solid var(--primary-color); 
}

.gallery-content{
    width: 450px;
}

.gallery-more{
    display: none;
}